From: Doug Goldstein Date: Fri, 3 Aug 2018 14:46:49 +0000 (-0500) Subject: automation: ensure created are not owned as root X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~3497 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success//%22http:/www.example.com/cgi/success/?a=commitdiff_plain;h=5a5b8bfec3c4551fd78046274aa5a9b39083095d;p=xen.git automation: ensure created are not owned as root By default the container runs as the root user and since the source tree is bind mounted into the container, any file is created and owned by the root user which harms ergonomics when working outside of the container environment. This maps the root user within the container to the uid of the user outside of the container so files are not owned by root. Signed-off-by: Doug Goldstein Reviewed-by: Wei Liu --- diff --git a/automation/scripts/containerize b/automation/scripts/containerize index 7bdfc2155d..bf9af589a8 100755 --- a/automation/scripts/containerize +++ b/automation/scripts/containerize @@ -70,6 +70,7 @@ fi # Kick off Docker einfo "*** Launching container ..." exec docker run \ + -u $(id -u) \ ${SSH_AUTH_SOCK:+-e SSH_AUTH_SOCK="/tmp/ssh-agent/${SSH_AUTH_NAME}"} \ -v "${CONTAINER_PATH}":/build:rw \ -v "${HOME}/.ssh":/root/.ssh:ro \